Version

SumProduct(ComplexVector[]) Method

Returns the sum of the products of the corresponding elements of each ComplexVector in x.
Syntax
'Declaration
 
Public Overloads Shared Function SumProduct( _
   ByVal ParamArray x() As ComplexVector _
) As Complex
public static Complex SumProduct( 
   params ComplexVector[] x
)

Parameters

x
An array of ComplexVectors with the same dimensions.

Return Value

A Complex number y, where y = (x[0][0]*...*x[M][0]) + ... + (x[0][N]*...*x[M][N]).
Exceptions
ExceptionDescription
System.ArgumentException Occurs if the dimensions of the ComplexVectors in x do not have the same dimensions.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also